ComponentOne PDF for .NET
CSJ2K.j2k.wavelet.synthesis Namespace / SynWTFilterInt Class / synthetize_hpf Method / synthetize_hpf(Int32[],Int32,Int32,Int32,Int32[],Int32,Int32,Int32,Int32[],Int32,Int32) Method
This is the array that contains the low-pass input signal.
This is the index in lowSig of the first sample to filter.
This is the number of samples in the low-pass input signal to filter.
This is the step, or interleave factor, of the low-pass input signal samples in the lowSig array.
This is the array that contains the high-pass input signal.
This is the index in highSig of the first sample to filter.
This is the number of samples in the high-pass input signal to filter.
This is the step, or interleave factor, of the high-pass input signal samples in the highSig array.
This is the array where the output signal is placed. It should be long enough to contain the output signal.
This is the index in outSig of the element where to put the first output sample.
This is the step, or interleave factor, of the output samples in the outSig array.

In This Topic
    synthetize_hpf(Int32[],Int32,Int32,Int32,Int32[],Int32,Int32,Int32,Int32[],Int32,Int32) Method
    In This Topic
    A specific version of the synthetize_hpf() method that works on int data. See the general description of the synthetize_hpf() method in the SynWTFilter class for more details.
    Syntax
    'Declaration
     
    
    Public Overloads MustOverride Sub synthetize_hpf( _
       ByVal lowSig() As Integer, _
       ByVal lowOff As Integer, _
       ByVal lowLen As Integer, _
       ByVal lowStep As Integer, _
       ByVal highSig() As Integer, _
       ByVal highOff As Integer, _
       ByVal highLen As Integer, _
       ByVal highStep As Integer, _
       ByVal outSig() As Integer, _
       ByVal outOff As Integer, _
       ByVal outStep As Integer _
    ) 
    public abstract void synthetize_hpf( 
       int[] lowSig,
       int lowOff,
       int lowLen,
       int lowStep,
       int[] highSig,
       int highOff,
       int highLen,
       int highStep,
       int[] outSig,
       int outOff,
       int outStep
    )

    Parameters

    lowSig
    This is the array that contains the low-pass input signal.
    lowOff
    This is the index in lowSig of the first sample to filter.
    lowLen
    This is the number of samples in the low-pass input signal to filter.
    lowStep
    This is the step, or interleave factor, of the low-pass input signal samples in the lowSig array.
    highSig
    This is the array that contains the high-pass input signal.
    highOff
    This is the index in highSig of the first sample to filter.
    highLen
    This is the number of samples in the high-pass input signal to filter.
    highStep
    This is the step, or interleave factor, of the high-pass input signal samples in the highSig array.
    outSig
    This is the array where the output signal is placed. It should be long enough to contain the output signal.
    outOff
    This is the index in outSig of the element where to put the first output sample.
    outStep
    This is the step, or interleave factor, of the output samples in the outSig array.
    See Also